home *** CD-ROM | disk | FTP | other *** search
- i = 5;
- this.onEnterFrame = function()
- {
- i--;
- makeAlien(i);
- if(!i)
- {
- delete this.onEnterFrame;
- }
- };
- ufo_mc.dir = 1;
- ufo_mc.onEnterFrame = function()
- {
- if(paused || newLife)
- {
- return undefined;
- }
- if(this._visible)
- {
- if(this._currentframe == 1)
- {
- if(this._x > 550 || this._x < -50)
- {
- this._visible = false;
- ufoSound_mc.gotoAndStop(1);
- }
- this._x += this.dir * 3;
- }
- }
- else if(rnd() < 0.002 && alien_mc[1]._y > 108)
- {
- this.dir = int(rnd() * 2) * 2 - 1;
- this._x = 250 - this.dir * 300;
- this._visible = true;
- ufoSound_mc.gotoAndStop(2);
- }
- };
-